home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / DEBUG / OBJTEST / MYOBJ.DPR < prev    next >
Text File  |  1996-05-19  |  222b  |  15 lines

  1. program Myobj;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {frmMain},
  6.   Objunit in 'OBJUNIT.PAS',
  7.   Comments in 'COMMENTS.PAS';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TfrmMain, frmMain);
  13.   Application.Run;
  14. end.
  15.